-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Ensure clocks properly respect leeways and use raw time for calculations for continuous clocks #58396
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ons for continuous clocks
@swift-ci please smoke test |
@swift-ci please smoke test |
@swift-ci please smoke test |
@swift-ci please smoke test |
@swift-ci please smoke test |
rjmccall
reviewed
Apr 26, 2022
@swift-ci please smoke test |
DougGregor
approved these changes
Apr 27, 2022
phausler
added a commit
to phausler/swift
that referenced
this pull request
Apr 27, 2022
…ons for continuous clocks (swiftlang#58396) * Ensure clocks properly respect leeways and use raw time for calculations for continuous clocks * slurp up time calcualtions to inline forms * ensure the tolerance codepaths get tested as well * Use task local storage for task sources in leeway based calculations * use comparison assertions for leeway based calculations * Whitespace cleanup * Use the CLOCK_MONOTONIC value for linux to be compatible with linux scheduling for dispatch * remove incorrect paren in macro check for OpenBSD * Address feedback and remove stray ;
phausler
added a commit
that referenced
this pull request
May 3, 2022
…ons for continuous clocks (#58396) (#58472) * Ensure clocks properly respect leeways and use raw time for calculations for continuous clocks * slurp up time calcualtions to inline forms * ensure the tolerance codepaths get tested as well * Use task local storage for task sources in leeway based calculations * use comparison assertions for leeway based calculations * Whitespace cleanup * Use the CLOCK_MONOTONIC value for linux to be compatible with linux scheduling for dispatch * remove incorrect paren in macro check for OpenBSD * Address feedback and remove stray ;
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Continuous clocks incorrectly used non raw clock values (which could result in missing time frames in cases where the raw clock did not align with dispatch's expectations).
This aligns those expectations further as well as handling the leeway functions for the clock sources.